runtime.mcache.tiny (field)

9 uses

	runtime (current package)
		malloc.go#L1078: 			if off+size <= maxTinySize && c.tiny != 0 {
		malloc.go#L1080: 				x = unsafe.Pointer(c.tiny + off)
		malloc.go#L1098: 			if !raceenabled && (size < c.tinyoffset || c.tiny == 0) {
		malloc.go#L1100: 				c.tiny = uintptr(x)
		mcache.go#L39: 	tiny       uintptr
		mcache.go#L296: 	c.tiny = 0
		mgcmark.go#L1591: 		if c == nil || c.tiny == 0 {
		mgcmark.go#L1594: 		_, span, objIndex := findObject(c.tiny, 0, 0)
		mgcmark.go#L1596: 		greyobject(c.tiny, 0, 0, span, gcw, objIndex)